home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / MacApp / AEGestalt 1.0b3 / UAEServerCommand.h < prev    next >
Encoding:
Text File  |  1991-12-11  |  461 b   |  22 lines  |  [TEXT/MPS ]

  1. //    UAEServerCommand.h
  2. //     Copyright © 1991 Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEServerCommand class, used to
  5. //    serve the incoming Apple event with needed information
  6.  
  7.  
  8. #ifndef __AESERVERCOMMAND__
  9. #define __AESERVERCOMMAND__
  10.  
  11. #ifndef __AEGESTALT__
  12. #include "UAEGestalt.h"
  13. #endif
  14.  
  15. class TAEServerCommand : public TServerCommand {
  16. public:
  17.                                 TAEServerCommand();
  18.     virtual pascal void         DoIt();
  19. };
  20.  
  21. #endif
  22.